body {
    padding: 0;
    margin: 0;
    position: relative;
    height: 100vh;
}
#challenge30 .fogo-de-artificio-container{
    width: 50px;
    height: 50px;
    position: relative;
}
#challenge30 .fogo-de-artificio-container .fogo-de-artificio-faisca{
    width: 4px;
    height: 100px;
    position: absolute;
}
#challenge30 .fogo-de-artificio-container .fogo-de-artificio-faisca:nth-child(1) {
    top: -110%;
    left: 50%;
    transform: translateX(-50%);
}
#challenge30 .fogo-de-artificio-container .fogo-de-artificio-faisca:nth-child(2) {
    top: -70%;
    left: 140%;
    transform: rotate(45deg);
}
#challenge30 .fogo-de-artificio-container .fogo-de-artificio-faisca:nth-child(3) {
    left: 175%;
    transform: translateY(10%) rotate(90deg);
}
#challenge30 .fogo-de-artificio-container .fogo-de-artificio-faisca:nth-child(4) {
    top: 110%;
    left: 140%;
    transform: rotate(135deg);
}
#challenge30 .fogo-de-artificio-container .fogo-de-artificio-faisca:nth-child(5) {
    top: 150%;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
}
#challenge30 .fogo-de-artificio-container .fogo-de-artificio-faisca:nth-child(6) {
    top: 105%;
    right: 145%;
    transform: rotate(230deg);
}
#challenge30 .fogo-de-artificio-container .fogo-de-artificio-faisca:nth-child(7) {
    right: 175%;
    transform: translateY(10%) rotate(270deg);
}
#challenge30 .fogo-de-artificio-container .fogo-de-artificio-faisca:nth-child(8) {
    top: -90%;
    right: 140%;
    transform: translateY(10%) rotate(315deg);
}
#challenge30 .fogo-de-artificio-container .fogo-de-artificio-faisca::before {
    content: "";
    width: 100%;
    height: 0;
    background-color: #f5a800;
    bottom: 0;
    position: absolute;
    animation: faiscando linear infinite 1.5s;
}

@keyframes faiscando {
    0% {
        height: 0;
        bottom: 0;
    }
    25% {
        height: 100%;
        bottom: 0;
    }
    50% {
        top: 0;
        height: 0;
    }
    75% {
        bottom: 0;
        height: 0;
    }
    100% {
        height: 0;
        bottom: 0;
    }
}

#challenge30 .fogo-de-artificio-container:nth-child(1) {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -10%);
}
#challenge30 .fogo-de-artificio-container:nth-child(2) {
    left: 25%;
    top: 10%;
    animation-delay: 1s;
}
#challenge30 .fogo-de-artificio-container:nth-child(3) {
    left: 75%;
    top: 10%;
}